home *** CD-ROM | disk | FTP | other *** search
/ Mesolore / Mesolore - Disc 1.iso / pc / data / Index.dir / 00001_Script_1 next >
Text File  |  2001-03-08  |  529b  |  16 lines

  1. on mouseDown
  2.   clickline = the mouseline 
  3.   if clickline <> -1 and the forecolor of line clickLine of field "results" <> 255 then 
  4.     set the itemDelimiter = "#"
  5.     if line clickline of field "results" <> "" then
  6.       mov = (item 4 of line clickline of field "results")
  7.       labl = (item 2 of line clickline of field "results")
  8.       if labl = 0 then
  9.         labl = value(item 3 of line clickline of field "results")
  10.       end if
  11.       
  12.       goto labl,mov
  13.     end if
  14.   end if
  15.   set the itemDelimiter = ","
  16. end